home *** CD-ROM | disk | FTP | other *** search
/ Holt Researcher: American History / Holt Researcher: American History.iso / pc / modules / dbmap.dxr / 00008_Sprite Properties.ls < prev    next >
Encoding:
Text File  |  2000-01-27  |  275 b   |  12 lines

  1. on SetPuppetState channelList, type, State
  2.   if type = #c then
  3.     repeat with rc = getAt(channelList, 1) to getAt(channelList, 2)
  4.       puppetSprite(rc, State)
  5.     end repeat
  6.   else
  7.     repeat with rc in channelList
  8.       puppetSprite(rc, State)
  9.     end repeat
  10.   end if
  11. end
  12.